home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Musik / Misc / Amster / Source / include / panel.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-01  |  677 b   |  35 lines

  1. /*
  2. ** Panel Header
  3. */
  4.  
  5. #include <sys/types.h>
  6.  
  7. #include "include/mui.h"
  8.  
  9. #ifndef AMSTER_PANEL_H
  10. #define AMSTER_PANEL_H
  11.  
  12. struct paneldata {
  13.     u_long *logo,*infoicon,*dlicon,*shareicon,*prficon;
  14. };
  15.  
  16. MUIF panel_dispatch(REG(a0) struct IClass *cl,REG(a2) Object *obj,REG(a1) Msg msg);
  17.  
  18. #define PANEL_OPENDEBUG 0x6001
  19. #define PANEL_CLOSEDEBUG 0x6002
  20. #define PANEL_OPENDL 0x6003
  21. #define PANEL_CLOSEDL 0x6004
  22. #define PANEL_OPENSHARE 0x6005
  23. #define PANEL_CLOSESHARE 0x6006
  24. #define PANEL_OPENPRF 0x6007
  25. #define PANEL_CLOSEPRF 0x6008
  26. #define PANEL_OPENABOUT 0x6009
  27. #define PANEL_OPENMSG 0x6010
  28.  
  29. #define PANEL_NEWCHAT 0x6012
  30. #define PANEL_DISPOSECHAT 0x6013
  31.  
  32.  
  33.  
  34. #endif    /* AMSTER_PANEL_H */
  35.